home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / distutils / archive_util.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  6KB  |  168 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''distutils.archive_util
  5.  
  6. Utility functions for creating archive files (tarballs, zip files,
  7. that sort of thing).'''
  8. __revision__ = '$Id: archive_util.py,v 1.17 2004/11/10 22:23:13 loewis Exp $'
  9. import os
  10. from distutils.errors import DistutilsExecError
  11. from distutils.spawn import spawn
  12. from distutils.dir_util import mkpath
  13. from distutils import log
  14.  
  15. def make_tarball(base_name, base_dir, compress = 'gzip', verbose = 0, dry_run = 0):
  16.     '''Create a (possibly compressed) tar file from all the files under
  17.     \'base_dir\'.  \'compress\' must be "gzip" (the default), "compress",
  18.     "bzip2", or None.  Both "tar" and the compression utility named by
  19.     \'compress\' must be on the default program search path, so this is
  20.     probably Unix-specific.  The output tar file will be named \'base_dir\' +
  21.     ".tar", possibly plus the appropriate compression extension (".gz",
  22.     ".bz2" or ".Z").  Return the output filename.
  23.     '''
  24.     compress_ext = {
  25.         'gzip': '.gz',
  26.         'bzip2': '.bz2',
  27.         'compress': '.Z' }
  28.     compress_flags = {
  29.         'gzip': [
  30.             '-f9'],
  31.         'compress': [
  32.             '-f'],
  33.         'bzip2': [
  34.             '-f9'] }
  35.     if compress is not None and compress not in compress_ext.keys():
  36.         raise ValueError, "bad value for 'compress': must be None, 'gzip', or 'compress'"
  37.     
  38.     archive_name = base_name + '.tar'
  39.     mkpath(os.path.dirname(archive_name), dry_run = dry_run)
  40.     cmd = [
  41.         'tar',
  42.         '-cf',
  43.         archive_name,
  44.         base_dir]
  45.     spawn(cmd, dry_run = dry_run)
  46.     if compress:
  47.         spawn([
  48.             compress] + compress_flags[compress] + [
  49.             archive_name], dry_run = dry_run)
  50.         return archive_name + compress_ext[compress]
  51.     else:
  52.         return archive_name
  53.  
  54.  
  55. def make_zipfile(base_name, base_dir, verbose = 0, dry_run = 0):
  56.     '''Create a zip file from all the files under \'base_dir\'.  The output
  57.     zip file will be named \'base_dir\' + ".zip".  Uses either the "zipfile"
  58.     Python module (if available) or the InfoZIP "zip" utility (if installed
  59.     and found on the default search path).  If neither tool is available,
  60.     raises DistutilsExecError.  Returns the name of the output zip file.
  61.     '''
  62.     
  63.     try:
  64.         import zipfile as zipfile
  65.     except ImportError:
  66.         zipfile = None
  67.  
  68.     zip_filename = base_name + '.zip'
  69.     mkpath(os.path.dirname(zip_filename), dry_run = dry_run)
  70.     if zipfile is None:
  71.         if verbose:
  72.             zipoptions = '-r'
  73.         else:
  74.             zipoptions = '-rq'
  75.         
  76.         try:
  77.             spawn([
  78.                 'zip',
  79.                 zipoptions,
  80.                 zip_filename,
  81.                 base_dir], dry_run = dry_run)
  82.         except DistutilsExecError:
  83.             raise DistutilsExecError, "unable to create zip file '%s': could neither import the 'zipfile' module nor find a standalone zip utility" % zip_filename
  84.         except:
  85.             None<EXCEPTION MATCH>DistutilsExecError
  86.         
  87.  
  88.     None<EXCEPTION MATCH>DistutilsExecError
  89.     log.info("creating '%s' and adding '%s' to it", zip_filename, base_dir)
  90.     
  91.     def visit(z, dirname, names):
  92.         for name in names:
  93.             path = os.path.normpath(os.path.join(dirname, name))
  94.             if os.path.isfile(path):
  95.                 z.write(path, path)
  96.                 log.info("adding '%s'" % path)
  97.                 continue
  98.         
  99.  
  100.     if not dry_run:
  101.         z = zipfile.ZipFile(zip_filename, 'w', compression = zipfile.ZIP_DEFLATED)
  102.         os.path.walk(base_dir, visit, z)
  103.         z.close()
  104.     
  105.     return zip_filename
  106.  
  107. ARCHIVE_FORMATS = {
  108.     'gztar': (make_tarball, [
  109.         ('compress', 'gzip')], "gzip'ed tar-file"),
  110.     'bztar': (make_tarball, [
  111.         ('compress', 'bzip2')], "bzip2'ed tar-file"),
  112.     'ztar': (make_tarball, [
  113.         ('compress', 'compress')], 'compressed tar file'),
  114.     'tar': (make_tarball, [
  115.         ('compress', None)], 'uncompressed tar file'),
  116.     'zip': (make_zipfile, [], 'ZIP file') }
  117.  
  118. def check_archive_formats(formats):
  119.     for format in formats:
  120.         if not ARCHIVE_FORMATS.has_key(format):
  121.             return format
  122.             continue
  123.     else:
  124.         return None
  125.  
  126.  
  127. def make_archive(base_name, format, root_dir = None, base_dir = None, verbose = 0, dry_run = 0):
  128.     '''Create an archive file (eg. zip or tar).  \'base_name\' is the name
  129.     of the file to create, minus any format-specific extension; \'format\'
  130.     is the archive format: one of "zip", "tar", "ztar", or "gztar".
  131.     \'root_dir\' is a directory that will be the root directory of the
  132.     archive; ie. we typically chdir into \'root_dir\' before creating the
  133.     archive.  \'base_dir\' is the directory where we start archiving from;
  134.     ie. \'base_dir\' will be the common prefix of all files and
  135.     directories in the archive.  \'root_dir\' and \'base_dir\' both default
  136.     to the current directory.  Returns the name of the archive file.
  137.     '''
  138.     save_cwd = os.getcwd()
  139.     if root_dir is not None:
  140.         log.debug("changing into '%s'", root_dir)
  141.         base_name = os.path.abspath(base_name)
  142.         if not dry_run:
  143.             os.chdir(root_dir)
  144.         
  145.     
  146.     if base_dir is None:
  147.         base_dir = os.curdir
  148.     
  149.     kwargs = {
  150.         'dry_run': dry_run }
  151.     
  152.     try:
  153.         format_info = ARCHIVE_FORMATS[format]
  154.     except KeyError:
  155.         raise ValueError, "unknown archive format '%s'" % format
  156.  
  157.     func = format_info[0]
  158.     for arg, val in format_info[1]:
  159.         kwargs[arg] = val
  160.     
  161.     filename = apply(func, (base_name, base_dir), kwargs)
  162.     if root_dir is not None:
  163.         log.debug("changing back to '%s'", save_cwd)
  164.         os.chdir(save_cwd)
  165.     
  166.     return filename
  167.  
  168.